matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 4 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 5 | <groupId>japa.javaparser</groupId> |
| 6 | <artifactId>javaparser</artifactId> |
| 7 | <packaging>jar</packaging> |
| 8 | <version>1.0.9-SNAPSHOT</version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 9 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 10 | <name>javaparser</name> |
| 11 | <url>http://code.google.com/p/javaparser/</url> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 12 | <inceptionYear>2007</inceptionYear> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 13 | <description>This package contains a Java 1.5 Parser with AST generation and visitor support. |
| 14 | The AST records the source code structure, javadoc and comments. Soon will be |
| 15 | possible change the AST nodes or create new ones to modify source code like refactoring. |
| 16 | This parser is based on Sreenivasa Viswanadha Java 1.5 parser.</description> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 17 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 18 | <issueManagement> |
| 19 | <system>Google Code</system> |
| 20 | <url>http://code.google.com/p/javaparser/issues/list</url> |
| 21 | </issueManagement> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 22 | |
| 23 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 24 | <developers> |
| 25 | <developer> |
| 26 | <name>Júlio Vilmar Gesser</name> |
| 27 | <email>jgesser@gmail.com</email> |
| 28 | </developer> |
| 29 | </developers> |
| 30 | <contributors> |
| 31 | <contributor> |
| 32 | <name>Hendy Irawan</name> |
| 33 | <email>hendy@soluvas.com</email> |
| 34 | <url>http://www.HendyIrawan.com/</url> |
| 35 | <organization>Soluvas</organization> |
| 36 | <organizationUrl>http://www.Soluvas.com/</organizationUrl> |
| 37 | </contributor> |
| 38 | </contributors> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 39 | |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 40 | <properties> |
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 42 | <java.version>1.6</java.version> |
| 43 | |
| 44 | <!-- Maven Plugins --> |
| 45 | <javacc-maven-plugin.version>2.6</javacc-maven-plugin.version> |
| 46 | <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 47 | |
| 48 | <!-- Test Dependencies --> |
| 49 | <junit.version>4.8.1</junit.version> |
| 50 | |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 51 | </properties> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 52 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 53 | <scm> |
André Rouél | 515c996 | 2013-02-20 08:33:17 +0100 | [diff] [blame^] | 54 | <connection>scm:git:git://github.com/matozoid/javaparser.git</connection> |
| 55 | <developerConnection>scm:git:git@github.com:matozoid/javaparser.git</developerConnection> |
| 56 | <url>https://github.com/matozoid/javaparser.git</url> |
| 57 | <tag>HEAD</tag> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 58 | </scm> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 59 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 60 | <build> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 61 | <plugins> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.maven.plugins</groupId> |
| 64 | <artifactId>maven-compiler-plugin</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 65 | <version>${maven-compiler-plugin.version}</version> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 66 | <configuration> |
| 67 | <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ --> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 68 | <source>${java.version}</source> |
| 69 | <target>${java.version}</target> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 70 | </configuration> |
| 71 | </plugin> |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 72 | <plugin> |
| 73 | <groupId>org.codehaus.mojo</groupId> |
| 74 | <artifactId>javacc-maven-plugin</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 75 | <version>${javacc-maven-plugin.version}</version> |
matozoid | d1ef188 | 2011-10-30 19:29:19 +0100 | [diff] [blame] | 76 | <executions> |
| 77 | <execution> |
| 78 | <id>javacc</id> |
| 79 | <goals> |
| 80 | <goal>javacc</goal> |
| 81 | </goals> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 85 | </plugins> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 86 | <pluginManagement> |
| 87 | <plugins> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 88 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> |
Didier Villevalois | 1607b18 | 2012-08-30 17:44:45 +0200 | [diff] [blame] | 89 | <plugin> |
| 90 | <groupId>org.eclipse.m2e</groupId> |
| 91 | <artifactId>lifecycle-mapping</artifactId> |
| 92 | <version>1.0.0</version> |
| 93 | <configuration> |
| 94 | <lifecycleMappingMetadata> |
| 95 | <pluginExecutions> |
| 96 | <pluginExecution> |
| 97 | <pluginExecutionFilter> |
| 98 | <groupId> |
| 99 | org.codehaus.mojo |
| 100 | </groupId> |
| 101 | <artifactId> |
| 102 | javacc-maven-plugin |
| 103 | </artifactId> |
| 104 | <versionRange> |
| 105 | [2.6,) |
| 106 | </versionRange> |
| 107 | <goals> |
| 108 | <goal>javacc</goal> |
| 109 | </goals> |
| 110 | </pluginExecutionFilter> |
| 111 | <action> |
| 112 | <ignore></ignore> |
| 113 | </action> |
| 114 | </pluginExecution> |
| 115 | </pluginExecutions> |
| 116 | </lifecycleMappingMetadata> |
| 117 | </configuration> |
| 118 | </plugin> |
| 119 | </plugins> |
| 120 | </pluginManagement> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 121 | </build> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 122 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 123 | <dependencies> |
| 124 | <dependency> |
| 125 | <groupId>junit</groupId> |
| 126 | <artifactId>junit</artifactId> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 127 | <version>${junit.version}</version> |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 128 | <scope>test</scope> |
| 129 | </dependency> |
| 130 | </dependencies> |
André Rouél | 486c1ef | 2013-02-20 08:27:38 +0100 | [diff] [blame] | 131 | |
matozoid | 43e6f7b | 2011-10-30 14:40:57 +0100 | [diff] [blame] | 132 | </project> |